package excel.zoom;
import com.aspose.cells.Workbook;
import com.aspose.cells.Worksheet;
import com.aspose.cells.WorksheetCollection;
public class AsposeZoom
{
public static void main(String[] args) throws Exception
{
//Instantiating a Excel object by excel file path
Workbook workbook = new Workbook();
//Accessing the first worksheet in the Excel file
WorksheetCollection worksheets = workbook.getWorksheets();
Worksheet worksheet = worksheets.get(0);
//Setting the zoom factor of the worksheet to 75
worksheet.setZoom(75);
//Saving the modified Excel file in default format
workbook.save("data/AsposeZoom.xls");
System.out.println("Aspose Zoom Created.");
}
}